DiGrande.it
Braille and Technologies for Visual Impairment

StringLower- Returns the string with the letters in lower case

Function that returns the string passed as parameter converting all the letters in lower case.

- StringLower(S): string

Parameters:

- (string) S: String to convert all letters to lower case.

Description:

Use the StringLower function to make a copy of it with all letters converted to lower case.

Examples:

// Creates a string variable with a few capital letters

S = "BiBlOS"

// Converts the entire string into lower case

T = StringLower(S)

// The variable T contains the string: biblos (all in lower case)

MsgBox(T)